home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / encodings / cp1256.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  3KB  |  124 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. """ Python Character Mapping Codec generated from 'CP1256.TXT' with gencodec.py.
  5.  
  6. Written by Marc-Andre Lemburg (mal@lemburg.com).
  7.  
  8. (c) Copyright CNRI, All Rights Reserved. NO WARRANTY.
  9. (c) Copyright 2000 Guido van Rossum.
  10.  
  11. """
  12. import codecs
  13.  
  14. class Codec(codecs.Codec):
  15.     
  16.     def encode(self, input, errors = 'strict'):
  17.         return codecs.charmap_encode(input, errors, encoding_map)
  18.  
  19.     
  20.     def decode(self, input, errors = 'strict'):
  21.         return codecs.charmap_decode(input, errors, decoding_map)
  22.  
  23.  
  24.  
  25. class StreamWriter(Codec, codecs.StreamWriter):
  26.     pass
  27.  
  28.  
  29. class StreamReader(Codec, codecs.StreamReader):
  30.     pass
  31.  
  32.  
  33. def getregentry():
  34.     return (Codec().encode, Codec().decode, StreamReader, StreamWriter)
  35.  
  36. decoding_map = codecs.make_identity_dict(range(256))
  37. decoding_map.update({
  38.     128: 8364,
  39.     129: 1662,
  40.     130: 8218,
  41.     131: 402,
  42.     132: 8222,
  43.     133: 8230,
  44.     134: 8224,
  45.     135: 8225,
  46.     136: 710,
  47.     137: 8240,
  48.     138: 1657,
  49.     139: 8249,
  50.     140: 338,
  51.     141: 1670,
  52.     142: 1688,
  53.     143: 1672,
  54.     144: 1711,
  55.     145: 8216,
  56.     146: 8217,
  57.     147: 8220,
  58.     148: 8221,
  59.     149: 8226,
  60.     150: 8211,
  61.     151: 8212,
  62.     152: 1705,
  63.     153: 8482,
  64.     154: 1681,
  65.     155: 8250,
  66.     156: 339,
  67.     157: 8204,
  68.     158: 8205,
  69.     159: 1722,
  70.     161: 1548,
  71.     170: 1726,
  72.     186: 1563,
  73.     191: 1567,
  74.     192: 1729,
  75.     193: 1569,
  76.     194: 1570,
  77.     195: 1571,
  78.     196: 1572,
  79.     197: 1573,
  80.     198: 1574,
  81.     199: 1575,
  82.     200: 1576,
  83.     201: 1577,
  84.     202: 1578,
  85.     203: 1579,
  86.     204: 1580,
  87.     205: 1581,
  88.     206: 1582,
  89.     207: 1583,
  90.     208: 1584,
  91.     209: 1585,
  92.     210: 1586,
  93.     211: 1587,
  94.     212: 1588,
  95.     213: 1589,
  96.     214: 1590,
  97.     216: 1591,
  98.     217: 1592,
  99.     218: 1593,
  100.     219: 1594,
  101.     220: 1600,
  102.     221: 1601,
  103.     222: 1602,
  104.     223: 1603,
  105.     225: 1604,
  106.     227: 1605,
  107.     228: 1606,
  108.     229: 1607,
  109.     230: 1608,
  110.     236: 1609,
  111.     237: 1610,
  112.     240: 1611,
  113.     241: 1612,
  114.     242: 1613,
  115.     243: 1614,
  116.     245: 1615,
  117.     246: 1616,
  118.     248: 1617,
  119.     250: 1618,
  120.     253: 8206,
  121.     254: 8207,
  122.     255: 1746 })
  123. encoding_map = codecs.make_encoding_map(decoding_map)
  124.